home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / StdioFileReadProc.c < prev    next >
C/C++ Source or Header  |  1990-09-11  |  3KB  |  97 lines

  1. /* 
  2.  * StdioFileReadProc.c --
  3.  *
  4.  *    Source code for the "StdioFileReadProc" procedure, which is used
  5.  *    internally by the stdio library to flush buffers for streams
  6.  *    associated with files and other OS-supported streams.
  7.  *
  8.  * Copyright 1988 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/StdioFileReadProc.c,v 1.5 90/09/11 14:27:19 kupfer Exp $ SPRITE (Berkeley)";
  20. #endif not lint
  21.  
  22. #include "stdio.h"
  23. #include "fileInt.h"
  24. #include "stdlib.h"
  25. #include <errno.h>
  26. #include <unistd.h>
  27.  
  28. /*
  29.  *----------------------------------------------------------------------
  30.  *
  31.  * StdioFileReadProc --
  32.  *
  33.  *    This procedure is invoked when another character is needed
  34.  *    from a stream and the buffer is empty.  It's used for all
  35.  *    streams that are associated with files (or pipes, or anything
  36.  *    for which the file-related system calls apply).
  37.  *
  38.  * Results:
  39.  *    None.
  40.  *
  41.  * Side effects:
  42.  *    If the stream is readable, a bunch of new bytes are read into
  43.  *    stream's buffer and readCount is set to indicate how many
  44.  *    bytes there are.  The error and end-of-file fields in stream
  45.  *    are set if any problems occur.
  46.  *
  47.  *    If the stream is stdin, then any line-buffered file streams
  48.  *    are flushed.
  49.  *
  50.  *----------------------------------------------------------------------
  51.  */
  52.  
  53. void
  54. StdioFileReadProc(stream)
  55.     register FILE *stream;    /* Stream whose buffer needs filling.  The
  56.                  * stream must be readable.  The clientData
  57.                  * field of stream gives a Sprite stream index.
  58.                  */
  59. {
  60.     register FILE *    stream2;
  61.  
  62.     /*
  63.      * Before doing any input from stdin, flush line-buffered
  64.      * streams.
  65.      */
  66.     
  67.     if (stream == stdin) {
  68.     for (stream2 = stdioFileStreams; stream2 != NULL;
  69.         stream2 = stream2->nextPtr) {
  70.         if (stream2->flags & STDIO_LINEBUF) {
  71.         fflush(stream2);
  72.         }
  73.     }
  74.     }
  75.  
  76.     /*
  77.      * Create buffer space for this stream if there isn't any yet.
  78.      */
  79.  
  80.     if (stream->bufSize == 0) {
  81.     stream->bufSize = BUFSIZ;
  82.     stream->buffer = (unsigned char *) malloc((unsigned) stream->bufSize);
  83.     }
  84.  
  85.     stream->readCount = read((int) stream->clientData, (char *) stream->buffer,
  86.         stream->bufSize);
  87.     stream->lastAccess = stream->buffer - 1;
  88.     if (stream->readCount <= 0) {
  89.     if (stream->readCount == 0) {
  90.         stream->flags |= STDIO_EOF;
  91.     } else {
  92.         stream->readCount = 0;
  93.         stream->status = errno;
  94.     }
  95.     }
  96. }
  97.